home *** CD-ROM | disk | FTP | other *** search
- Path: news1.h1.usa.pipeline.com!usenet
- From: grantp@usa.pipeline.com(Pete)
- Newsgroups: comp.lang.c++
- Subject: Re: New to this group !
- Date: 24 Feb 1996 20:27:04 GMT
- Organization: Kalevi, Inc.
- Message-ID: <4gnsao$mha@news1.usa.pipeline.com>
- NNTP-Posting-Host: pipe11.h1.usa.pipeline.com
- X-PipeUser: grantp
- X-PipeHub: usa.pipeline.com
- X-PipeGCOS: (Pete)
- X-Newsreader: Pipeline USA v3.3.0
-
- On Feb 24, 1996 11:37:21 in article <New to this group !>,
- 'rsyverts@telepost.no (R.S.)' wrote:
-
-
- >Hello !
- >
- >I am new to this group, and have just started programing C++.
- >
- >I am making a very little screensaver, and get the error-message:
- >
- >Compiling R_TEST3.C:
- >Linking BIN\R_TEST3.EXE:
- >Linker Error: Group DGROUP exceeds 64K
- >
- >Can someone help me ? Please send me e-mail....
- >
- You need to reduce the amount of global static data.
- Where you have something like:
-
- double myarray[10000];
-
- change it to
- double * myarray = 0;
-
- then in your main, do:
- myarray = new double[10000];
-
- --
- Pete Grant
- Kalevi, Inc.
- Software Engineering & development
-